home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / editors / AME / Rexx / multiwindow.ame < prev    next >
Encoding:
Text File  |  1994-02-01  |  1.0 KB  |  31 lines

  1. /* $VER: Multiwindow 37.1 (21.2.93)
  2. /* Setup For Multiple Windows AME use */
  3. /* This makes AME open additional windows for new files, and links */
  4. /* the various AME kill buffers together via the clipboard.device */
  5. /* and binds the rexx script to jump from one window to another */
  6.  
  7. alias 'closeall globalrx quit'
  8. alias 'newwindow ame as noarg' /* dummy argument */
  9.  
  10. ITEM '-1 "New Window" "ame as noarg"'    /* dummy argument */
  11. ITEM '-1 "Next Window" "rx dcc:rexx/nextame"'
  12.  
  13. ITEM '18 "Erase" "stringrx deleteblock; copykill" E'
  14. ITEM '19 "Paste" "stringrx pastekill; yank" Y'
  15.  
  16. ITEM '21 "Erase Vertical Block" "vdeleteblock; copykill" <'
  17. ITEM '22 "Yank Vertical Block" "pastekill; vyank" >'
  18.  
  19. onmenu
  20.  
  21. bindkey 'rx F4 "dcc:rexx/nextame"'    /* bind next ame function */
  22.  
  23. bindkey 'stringrx ^Y "pastekill; yank"'
  24. bindkey 'stringrx ^K "killline; copykill"'
  25.  
  26. bindkey 'stringrx ^X-^Y "pastekill; vyank"'
  27. bindkey 'stringrx ^W "deleteblock; copykill"'
  28. bindkey 'stringrx ^X-W "vdeleteblock; copykill"'
  29.  
  30. ITEM '3 "Visit New" "stringrx splitwindow; visit" U'
  31. onmenu